:root {
  --color-blanco: #ffffff;
  --color-rosa-oscuro: #cb5d7a;
  --color-rosa-claro: #feb7c1; 
  --color-azul-oscuro: #36506b;
  --color-azul-claro: #a5c8e7;       
  --color-negro: #141414;  
  --color-gris:#fff6ed;          
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Questrial', sans-serif;
  background-color: var(--color-blanco);
  color: var(--color-negro);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.barra-navegacion {
  width: 100%;
  height: 50px;
  background-color: var(--color-rosa-claro);
}

main {
  flex: 1;
}

.seccion-principal {
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  overflow: hidden;
}

.imagen-fondo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.capa-contenido {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: rgba(20, 20, 20, 0.3);
  padding: 20px;
}

h1 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 5rem;
  color: var(--color-gris);
  font-weight: 800;
  text-align: center;
  line-height: 1;
  padding-bottom: 10px;
}

.boton-cta {
  font-family: 'Questrial', sans-serif;
  background-color: var(--color-azul-claro);
  color: var(--color-azul-oscuro);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
}

.seccion-gif {
  width: 100%;
  height: 25px;
  overflow: hidden;
  background-color: var(--color-negro);
}

.gif-girador {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seccion-conexion {
  width: 100%;
  height: 400px;
  background-color: var(--color-gris);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.contenido-conexion {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.contenido-conexion h2 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-azul-oscuro);
  line-height: 1.1;
  text-align: center;
}

.bajada-italica {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-azul-oscuro);
  text-align: center;
}

.texto-regular {
  font-family: 'Questrial', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-azul-oscuro);
  margin-top: 15px;
  text-align: center;
}

.seccion-recomendaciones {
  background-color: var(--color-azul-oscuro);
  padding: 80px 40px 40px 40px;
  width: 100%;
}

.seccion-recomendaciones {
  background-color: var(--color-azul-oscuro);
  padding: 80px 40px 40px 40px;
  width: 100%;
}

.seccion-recomendaciones h2 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-rosa-claro);
  text-align: left;
  max-width: 810px;
  margin: 0 auto 40px auto;
  width: 100%;
}

.contenedor-columnas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}

.columna {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
}

.tarjeta-gris {
  background-color: var(--color-gris);
  width: 260px;
  height: 380px;
  padding: 20px 20px 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.foto-cuadrada {
  width: 220px;
  height: 220px;
  overflow: hidden;
  background-color: #000;
}

.foto-cuadrada img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.textos-tarjeta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 15px;
}

.tarjeta-gris h3 {
  font-family: 'Questrial', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-rosa-oscuro);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--color-rosa-oscuro);
  padding-bottom: 6px;
  margin-bottom: 10px;
  width: 80%;
}

.boton-tarjeta {
  font-family: 'Questrial', sans-serif;
  background-color: transparent;
  color: var(--color-rosa-oscuro);
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  padding: 5px 0 0 0;
}

.contenedor-mas-info {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px auto 0 auto;
}

.boton-descubrir {
  font-family: 'Questrial', sans-serif;
  background-color: var(--color-rosa-claro);
  color: var(--color-rosa-oscuro);
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  margin-top: 20px;
  font-weight: bold;
}

.seccion-historias {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: var(--color-blanco);
  display: flex;
  justify-content: center;
  align-items: center; 
}

.contenedor-fondo-rayas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.imagen-rayas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seccion-historias {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: var(--color-blanco);
  display: flex;
  justify-content: center;
  align-items: center; 
}

.contenedor-fondo-rayas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.imagen-rayas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contenedor-carrusel {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 230px;
  overflow: hidden;
  border: 4px solid var(--color-azul-oscuro);
}

.contenedor-carrusel ul {
  display: flex;
  width: 500%;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: slide 16s infinite ease-in-out;
}

.contenedor-carrusel li {
  width: 20%;
  height: 100%;
}

.contenedor-carrusel li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes slide {
  0%, 20% { margin-left: 0%; }
  25%, 45% { margin-left: -100%; }
  50%, 70% { margin-left: -200%; }
  75%, 95% { margin-left: -300%; }
  100% { margin-left: -400%; }
}

.contenedor-bajada-historias {
  background-color: var(--color-gris);
  padding: 80px 40px 40px 40px;
  width: 100%;
  height: 300px
}

footer {
  padding: 15px;
  background-color: var(--color-rosa-claro);
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
  color: var(--color-azul-oscuro)
}